home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / tftpd_detect.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  56 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(11819);
  8.  script_version ("$Revision: 1.4 $");
  9. #script_cve_id("CVE-MAP-NOMATCH");
  10.  
  11.  name["english"] = "a tftpd server is running";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running a tftpd server.
  16.  
  17. Solution : If you do not use this service, you should disable it.
  18. Risk factor : Low";
  19.  
  20.  script_description(english:desc["english"]);
  21.  
  22.  summary["english"] = "tftpd Server detection";
  23.  script_summary(english:summary["english"]);
  24.  
  25.  script_category(ACT_GATHER_INFO);
  26.  
  27.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  28.  family["english"] = "General";
  29.  script_family(english:family["english"]);
  30.  exit(0);
  31. }
  32.  
  33. #
  34. # The script code starts here
  35. #
  36.  
  37.  
  38. if(islocalhost())exit(0);
  39. req = raw_string(0x00, 0x01) + "nessus" + rand() + raw_string(0x00) + "netascii" + raw_string(0x00);
  40.  
  41.  
  42. ip = forge_ip_packet(ip_hl : 5, ip_v: 4,  ip_tos:0, ip_len:20, ip_id:rand(), ip_off:0, ip_ttl:64, ip_p:IPPROTO_UDP,
  43.              ip_src:this_host());
  44.              
  45. myudp = forge_udp_packet(ip:ip, uh_sport:4315, uh_dport:69, uh_ulen: 8 + strlen(req), data:req);
  46.  
  47.  
  48. filter = 'udp and dst port 4315 and src host ' + get_host_ip() + ' and udp[9:1]=0x05';
  49.  
  50. rep = send_packet(myudp, pcap_active:TRUE, pcap_filter:filter);         
  51. if(rep)
  52. {
  53.  data = get_udp_element(udp:rep, element:"data");
  54.  if(ord(data[1]) == 0x05)security_note(port:69, proto:"udp");
  55. }
  56.